
:root {
    /* Colors */
    --color-limegreen-100: #32ce06;
    --color-skyblue-100: #5DCCFA;
    --color-darkblue-100: #001a25f7;
    --color-gray-100: #22212d;
    --color-gray-300: #a8a7a7;
  
    /* Paddings */
    --padding-base: 16px;
    --padding-xl: 20px;
    --padding-5xs: 8px;
    --padding-7xl: 26px;
    --padding-3xs: 10px;
  
  
    /* font sizes */
    --font-size-lg: 18px;
    --font-size-sm: 14px;
  }
  
  
  /*--------------------------------------------------------------
  # General
  --------------------------------------------------------------*/
  body {
    font-family: "Input Mono", "Open Sans", sans-serif;
    /* color: #9CB8A5 */
  }
  
  a {
    color: var(--color-darkblue-100);
    text-decoration: none;
  }
  
  a:hover {
     color: var(--color-skyblue-100);
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Jost", sans-serif;
  }
  
  
  p {
    color: #9CB8A5;
    line-height: 21.6px;
  }
  
  /*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
  
    /* Styling for the custom scrollbar */
    ::-webkit-scrollbar {
      width: 12px;  /* Width of the scrollbar */
    }
  
    ::-webkit-scrollbar-track {
      background-color: #000a0e;  /* Background of the scrollbar track */
      border-radius: 10px;
    }
  
    ::-webkit-scrollbar-thumb {
      background-color: #ffa500;  /* Scrollbar thumb color (Orange) */
      border-radius: 10px;
      border: 3px solid #000a0e;  /* Border of the thumb (to create contrast) */
    }
  
    ::-webkit-scrollbar-thumb:hover {
      background-color: #ff7f00;  /* Darker orange on hover */
      transition: background-color 0.3s ease;
    }
  
    ::-webkit-scrollbar-corner {
      background-color: #000a0e;  /* Corner where both scrollbars meet */
    }
  
    /* Scrollbar styling for Firefox */
    html {
      scrollbar-width: thin;
      scrollbar-color: #ffa500 #000a0e;  /* thumb color and track color */
    }
  
  
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #32ce063d;
  }
  
  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #32ce063d;
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
  }
  
  @keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  /*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #ffa500; /* Changed to orange */
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
  }
  
  .back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
  }
  
  .back-to-top:hover {
    background: #ff8c00; /* Darker orange for hover effect */
    color: #fff;
  }
  
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  
  
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  
  
  
  #header {
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    background: transparent; /* Transparent Navbar */
  }
  
  #header.header-scrolled,
  #header.header-inner-pages {
    background: rgba(0, 23, 32, 0.9);
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /* Hide Sidebar & Button on Desktop */
  @media screen and (min-width: 769px) {
    .menu-btn {
        display: none !important;
    }
    .mobile-menu {
        display: none !important;
    }
  }
  
  /* Sidebar */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -270px; /* Start off-screen */
    width: 250px;
    height: 100%;
    background: rgba(0, 23, 32, 0.8); /* 20% transparency */
    backdrop-filter: blur(8px);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  /* When sidebar is active */
  .mobile-menu.active {
    right: 0;
  }
  
  
  /* Sidebar Menu Links */
  .mobile-menu ul {
    list-style: none;
    padding: 0;
    width: 100%;
  }
  
  .mobile-menu ul li {
    width: 100%;
  }
  
  .mobile-menu ul li a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    transition: 0.3s;
    font-size: 16px;
  }
  
  .mobile-menu ul li a:hover {
    background: orange;
  }
  
  /* Social Icons */
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between icons */
    margin-top: auto;
    padding: 30px;
    width: 100%;
  }
  
  .social-icons a {
    color: white;
    font-size: 28px; /* Increased size */
    transition: 0.3s;
    text-align: center;
  }
  
  .social-icons a:hover {
    color: orange;
    transform: scale(1.2); /* Slight zoom effect */
  }
  
  /* Menu Toggle Button */
  .menu-btn {
    position: fixed;
    top: 18px;
    right: 15px;
    background: orange;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1001;
    transition: 0.3s ease-in-out;
  }
  
  .menu-btn i {
    font-size: 20px;
    color: white;
    transition: transform 0.3s ease-in-out;
  }
  
  /* Close Button */
  .menu-btn.active i {
    transform: rotate(180deg);
  }
  
  
  .navbar {
    padding: 0;
    display: flex;
    justify-content: center; /* Centers the navbar items */
    width: 100%; /* Ensures full width */
  }
  
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  
  
  .navbar li {
    position: relative;
    margin: 0px 3px;
  }
  
  .navbar a {
    display: flex;
    align-items: center;
    padding: 10px 30px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
  }
  
  /* Hover Effect */
  .navbar a:hover,
  .navbar .active,
  .navbar li:hover>a {
    border-bottom: 2px solid var(--color-skyblue-100);
    color: var(--color-skyblue-100);
  }
  
  /* TEAM Button Styled Like Tokenomics */
  .navbar .team-btn {
    transition: 0.3s;
  }
  
  .navbar .team-btn:hover,
  .navbar .team-btn.active {
    border-bottom: 2px solid var(--color-skyblue-100);
    color: var(--color-skyblue-100);
  }
  
  
  .navbar .team-btn:hover {
    color: var(--color-skyblue-100);
  }
  
  /* LOGIN Button - Unique Style */
  .navbar .login-btn {
    background: linear-gradient(45deg, #00f7ff, #001720);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
  }
  
  .navbar .login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 10px #00f7ff, 0 0 30px cyan;
  }
  
  /* MOBILE NAVIGATION */
  .mobile-nav-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    transition: 0.3s;
  }
  
  .mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100%;
    background: rgba(0, 23, 32, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.4s ease-in-out;
    box-shadow: 5px 0 15px rgba(0, 255, 255, 0.2);
  }
  
  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mobile-nav li {
    margin: 20px 0;
  }
  
  .mobile-nav a {
    font-size: 18px;
    color: white;
    text-decoration: none;
    padding: 10px;
    display: block;
    transition: 0.3s;
  }
  
  /* Close Button */
  .mobile-nav-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: white;
  }
  
  /* Show Mobile Menu */
  .mobile-nav-active {
    left: 0;
  }
  
  /* RESPONSIVENESS */
  @media (max-width: 768px) {
    .desktop-nav {
      display: none;
    }
    
    .mobile-nav-toggle {
      display: block;
    }
  }
  
  .btn-dark-blue a:hover{
   border: none;
   padding: 0px 30px;
  }
  
  .icon-social-desktop .filename-1-frame{
    width: 50px;
  }
  
  .icon-social-desktop .filename-1-frame a:hover{
    border: none;
   padding: 0px 30px;
  }
  
  .icon-social-mobile .filename-1-frame a:hover{
    border: none;
  }
  
  
  .navbar .getstarted,
  .navbar .getstarted:focus {
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    border: 2px solid #47b2e4;
    font-weight: 600;
  }
  
  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: #31a9e1;
  }
  
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }
  
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
    color: #0c3c53;
  }
  
  .navbar .dropdown ul a i {
    font-size: 12px;
  }
  
  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: #47b2e4;
  }
  
  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }
  
  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
  .mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }
  
  .mobile-nav-toggle.bi-x {
    color: #fff;
  }
  
  @media (max-width: 991px) {
    .mobile-nav-toggle {
      display: block;
    }
  
    .navbar ul {
      display: none;
    }
  }
  
  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #00304280;
    transition: 0.3s;
    z-index: 999;
  }
  
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  
  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #020a00;
    overflow-y: auto;
    transition: 0.3s;
  }
  
  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: white;
  }
  
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover>a {
    color: var(--color-skyblue-100);
  }
  
  .navbar-mobile .getstarted,
  .navbar-mobile .getstarted:focus {
    margin: 15px;
    /* color: #32ce063d; */
  }
  
  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }
  
  .navbar-mobile .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar-mobile .dropdown ul a {
    padding: 10px 20px;
  }
  
  .navbar-mobile .dropdown ul a i {
    font-size: 12px;
  }
  
  .navbar-mobile .dropdown ul a:hover,
  .navbar-mobile .dropdown ul .active:hover,
  .navbar-mobile .dropdown ul li:hover>a {
    color: #47b2e4;
  }
  
  .navbar-mobile .dropdown>.dropdown-active {
    display: block;
    visibility: visible !important;
  }
  
  
  .header-join-btn-green {
    border: none;
    background-color: var(--color-skyblue-100);
    box-shadow: 3px 3px 0#197300;
    align-items: center;
    padding: var(--padding-base) var(--padding-xl);
    font-size: var(--font-size-sm);
    color: var(--color-gray-100);
  }
  
  .header-join-btn-mobile {
    display: none;
  }
  
  
  .text-align-last-center {
    text-align-last: center;
  }
  
  .join-community {
    display: flex;
    justify-content: space-between;
  }
  
  .pepes-text {
    color: var(--color-skyblue-100);
  }
  
  
  .font-family-orbitron-normal {
   font-family: 'Orbitron', sans-serif;;
  }
  
  
  
  
  .filename-1-frame {
    padding: var(--padding-5xs);
  }
  
  
  .for-mobile-frog-img {
    display: none;
  }
  
  @media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
  
    .navbar .dropdown .dropdown:hover>ul {
      left: -100%;
    }
  }
  
/* Ecosystem Section */
/* Background with Tint */
#ecosystem {
    padding: 120px 0;
    background: url("Group2.svg") no-repeat center center/cover;
    position: relative;
    font-family: 'Orbitron', sans-serif;
}

#ecosystem::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 66, 0.7); /* Dark Blue Tint */
    backdrop-filter: blur(2px);
    z-index: 1;
}
/* Title Styling */
.section-title {
    font-size: 36px;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
}

/* Grid Layout */
.row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 2;
    padding: 0 20px; /* Added padding for mobile spacing */
}

/* Glassmorphism Cards */
.ecosystem-item {
    padding: 15px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-in-out;
}

/* Hover Effect */
.ecosystem-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(255, 255, 255, 0.2);
}

/* Icon Styling */
.icon-wrapper img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

/* Scale effect on hover */
.ecosystem-item:hover img {
    transform: scale(1.1) rotate(5deg);
}

/* Text */
.ecosystem-item p {
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
}

/* Popup - Initially Hidden */
.popup {
    display: none;  /* Hidden by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 50, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    text-align: center;
    color: #fff;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Show Popup - Active */
.popup.show {
    display: flex; /* Ensures it appears */
    opacity: 1;
}

/* Popup Content */
.popup-content {
    font-size: 20px;
    font-weight: bold;
}

.popup button {
    margin-top: 10px;
    padding: 8px 15px;
    background: #ff5500;
    border: none;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.popup button:hover {
    background: #ff3300;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Fix: Ensure spacing on mobile */
@media (max-width: 768px) {
    .row {
        padding: 0 15px; /* Add spacing from both sides */
        gap: 30px; /* Reduce gap for better alignment */
    }

    .ecosystem-item {
        margin: 0 auto; /* Center items */
        width: 90%; /* Ensure they do not stretch full width */
    }
}


/* Footer Styling */.dashboard-footer {
	background: #1a1a1a;
	color: #000000;
	text-align: center;
	padding: 15px;
	font-size: 14px;
	width: 100%;
	margin-top: 0; /* Ensure no unwanted margin */
	position: relative; /* Keep it positioned properly */
}

.footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.footer-links {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	justify-content: center;
}

.footer-links a {
	color: #ffcc00;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #ffaa00;
}

@media (max-width: 768px) {
	.footer-content {
		text-align: center;
	}
	.footer-links {
		flex-wrap: wrap;
		justify-content: center;
		gap: 12px;
	}
}

/* Ensure the body background matches footer to avoid a white gap */
body, html {
	background: #1a1a1a;
	margin: 0;
	padding: 0;
}
